Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

new checker http-const #155

Closed
wants to merge 1 commit into from
Closed

Conversation

mmorel-35
Copy link

@mmorel-35 mmorel-35 commented Jun 25, 2024

Closes #141

@mmorel-35
Copy link
Author

This probably deserves a bit of refactoring.
This is based on https://github.com/sashamelentyev/usestdlibvars work.

@coveralls
Copy link

coveralls commented Jun 25, 2024

Pull Request Test Coverage Report for Build 9659794485

Details

  • 78 of 79 (98.73%) changed or added relevant lines in 2 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage increased (+0.2%) to 93.82%

Changes Missing Coverage Covered Lines Changed/Added Lines %
internal/checkers/http_const.go 70 71 98.59%
Totals Coverage Status
Change from base Build 9608177733: 0.2%
Covered Lines: 2247
Relevant Lines: 2395

💛 - Coveralls

Copy link
Contributor

@ccoVeille ccoVeille left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks a lot, it would be great to have this linter

I was thinking about coding it, but you did it.

It's great!!!

@@ -56,9 +56,14 @@ func isTypedIntNumber(e ast.Expr, v int, types ...string) bool {
return false
}

func isIntNumber(e ast.Expr, v int) bool {
func safeTypedBasicLit(e ast.Expr, typ token.Token) (*ast.BasicLit, bool) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm unsure about the name, but thanks I had also noticed this could be refactored into a dedicated function

Copy link
Author

@mmorel-35 mmorel-35 Jun 25, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As it is a type-safe BasicLit, I named it this way .
Feel free to change it if you have a better idea

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm so lame at wording. I'm only able to argue when I find a wording, but I'm never able to find a descent one to suggest 😅

}

var httpStatusCode = map[string]string{
strconv.Itoa(http.StatusContinue): "http.StatusContinue",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think we should consider performance for this

I would have used a httpStatusCode = map[int]string{

so no, strconv.Itoa here

but only when needed in the code, you can also create a dedicated testing helper if your prefer

but current code looks strange to me

Copy link
Author

@mmorel-35 mmorel-35 Jun 25, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I assumed it 😅. The code is so strange 😁

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe Anton will provide his guidance

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Antonboom it's me the serial mention guy 😅😁

What are your thoughts about this?

The fact the code imported from usedstdvars is a bit strange

}
}
if len(suggestedFixes) > 0 {
return &analysis.Diagnostic{
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It might be better if newDiagnostic func was able to handle an array of suggestedFix instead of one . But that's for a dedicated PR.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I agree

@coveralls
Copy link

coveralls commented Jun 25, 2024

Pull Request Test Coverage Report for Build 9668183301

Details

  • 69 of 70 (98.57%) changed or added relevant lines in 2 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage increased (+0.1%) to 93.797%

Changes Missing Coverage Covered Lines Changed/Added Lines %
internal/checkers/http_const.go 61 62 98.39%
Totals Coverage Status
Change from base Build 9608177733: 0.1%
Covered Lines: 2238
Relevant Lines: 2386

💛 - Coveralls

@coveralls
Copy link

coveralls commented Jun 25, 2024

Pull Request Test Coverage Report for Build 9668248204

Details

  • 71 of 76 (93.42%) changed or added relevant lines in 2 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage decreased (-0.02%) to 93.645%

Changes Missing Coverage Covered Lines Changed/Added Lines %
internal/checkers/http_const.go 63 68 92.65%
Totals Coverage Status
Change from base Build 9608177733: -0.02%
Covered Lines: 2240
Relevant Lines: 2392

💛 - Coveralls

@coveralls
Copy link

coveralls commented Jun 25, 2024

Pull Request Test Coverage Report for Build 9668312351

Details

  • 71 of 76 (93.42%) changed or added relevant lines in 2 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage decreased (-0.02%) to 93.645%

Changes Missing Coverage Covered Lines Changed/Added Lines %
internal/checkers/http_const.go 63 68 92.65%
Totals Coverage Status
Change from base Build 9608177733: -0.02%
Covered Lines: 2240
Relevant Lines: 2392

💛 - Coveralls

@coveralls
Copy link

coveralls commented Jun 25, 2024

Pull Request Test Coverage Report for Build 9668623785

Details

  • 71 of 76 (93.42%) changed or added relevant lines in 2 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage decreased (-0.02%) to 93.645%

Changes Missing Coverage Covered Lines Changed/Added Lines %
internal/checkers/http_const.go 63 68 92.65%
Totals Coverage Status
Change from base Build 9608177733: -0.02%
Covered Lines: 2240
Relevant Lines: 2392

💛 - Coveralls

internal/checkers/http_const.go Show resolved Hide resolved
internal/checkers/http_const.go Outdated Show resolved Hide resolved
}
if bt, ok := safeTypedBasicLit(call.Args[4], token.INT); ok {
currentVal := bt.Value
key := strings.ToUpper(currentVal)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I was looking for this, please add tests for for lower case "get" or Pascal case (Get) and all other methods

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Between testify assert Method, http method and http status, that’s going to be a huge matrix to cover, any idea on how to cover it with a simple solution ?

@coveralls
Copy link

coveralls commented Jun 25, 2024

Pull Request Test Coverage Report for Build 9669768290

Details

  • 77 of 84 (91.67%) changed or added relevant lines in 2 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage decreased (-0.08%) to 93.583%

Changes Missing Coverage Covered Lines Changed/Added Lines %
internal/checkers/http_const.go 69 76 90.79%
Totals Coverage Status
Change from base Build 9608177733: -0.08%
Covered Lines: 2246
Relevant Lines: 2400

💛 - Coveralls

@coveralls
Copy link

coveralls commented Jun 25, 2024

Pull Request Test Coverage Report for Build 9669932292

Details

  • 80 of 84 (95.24%) changed or added relevant lines in 2 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage increased (+0.04%) to 93.708%

Changes Missing Coverage Covered Lines Changed/Added Lines %
internal/checkers/http_const.go 72 76 94.74%
Totals Coverage Status
Change from base Build 9608177733: 0.04%
Covered Lines: 2249
Relevant Lines: 2400

💛 - Coveralls

@coveralls
Copy link

coveralls commented Jun 25, 2024

Pull Request Test Coverage Report for Build 9669999628

Details

  • 80 of 84 (95.24%) changed or added relevant lines in 2 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage increased (+0.04%) to 93.708%

Changes Missing Coverage Covered Lines Changed/Added Lines %
internal/checkers/http_const.go 72 76 94.74%
Totals Coverage Status
Change from base Build 9608177733: 0.04%
Covered Lines: 2249
Relevant Lines: 2400

💛 - Coveralls

@coveralls
Copy link

coveralls commented Jun 25, 2024

Pull Request Test Coverage Report for Build 9670110548

Details

  • 80 of 84 (95.24%) changed or added relevant lines in 2 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage increased (+0.04%) to 93.708%

Changes Missing Coverage Covered Lines Changed/Added Lines %
internal/checkers/http_const.go 72 76 94.74%
Totals Coverage Status
Change from base Build 9608177733: 0.04%
Covered Lines: 2249
Relevant Lines: 2400

💛 - Coveralls

@coveralls
Copy link

coveralls commented Jun 26, 2024

Pull Request Test Coverage Report for Build 9673263571

Details

  • 80 of 84 (95.24%) changed or added relevant lines in 2 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage increased (+0.04%) to 93.735%

Changes Missing Coverage Covered Lines Changed/Added Lines %
internal/checkers/http_const.go 72 76 94.74%
Totals Coverage Status
Change from base Build 9673069496: 0.04%
Covered Lines: 2289
Relevant Lines: 2442

💛 - Coveralls

Copy link
Contributor

@ccoVeille ccoVeille left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I forgot to send this. It was pending

internal/checkers/http_const.go Outdated Show resolved Hide resolved
internal/checkers/http_const.go Outdated Show resolved Hide resolved
@ccoVeille
Copy link
Contributor

ccoVeille commented Jun 26, 2024

I now understand why @ldez (hi 👋) expects PR to do not rewriting history during code review.

It's something I have been doing for a while, even in this project. But now I'm facing the way @mmorel-35 does, which I would have done too, I can see how difficult it is yo track the changes made between each iterations.

Here there is only one commit, and I have to read everything again and again instead of seeing the small changes made by each reviews

I repeat it's something I have done many times, even recently, so I don't blame you @mmorel-35, but now I understand Ludovic's guidance

internal/checkers/http_const.go Outdated Show resolved Hide resolved
internal/checkers/http_const.go Outdated Show resolved Hide resolved
internal/checkers/http_const.go Outdated Show resolved Hide resolved
internal/checkers/http_const.go Outdated Show resolved Hide resolved
@ccoVeille
Copy link
Contributor

@mmorel-35 I have no idea what you changed with your last commit. I reviewed everything and spotted things I found. But I have no idea if it's new code or not.

@coveralls
Copy link

coveralls commented Jun 26, 2024

Pull Request Test Coverage Report for Build 9674262358

Details

  • 80 of 88 (90.91%) changed or added relevant lines in 2 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage decreased (-0.1%) to 93.581%

Changes Missing Coverage Covered Lines Changed/Added Lines %
internal/checkers/http_const.go 72 80 90.0%
Totals Coverage Status
Change from base Build 9673069496: -0.1%
Covered Lines: 2289
Relevant Lines: 2446

💛 - Coveralls

@coveralls
Copy link

coveralls commented Jun 26, 2024

Pull Request Test Coverage Report for Build 9674319119

Details

  • 83 of 91 (91.21%) changed or added relevant lines in 2 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage decreased (-0.1%) to 93.589%

Changes Missing Coverage Covered Lines Changed/Added Lines %
internal/checkers/http_const.go 75 83 90.36%
Totals Coverage Status
Change from base Build 9673069496: -0.1%
Covered Lines: 2292
Relevant Lines: 2449

💛 - Coveralls

@coveralls
Copy link

coveralls commented Jun 26, 2024

Pull Request Test Coverage Report for Build 9674373889

Details

  • 83 of 91 (91.21%) changed or added relevant lines in 2 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage decreased (-0.1%) to 93.589%

Changes Missing Coverage Covered Lines Changed/Added Lines %
internal/checkers/http_const.go 75 83 90.36%
Totals Coverage Status
Change from base Build 9673069496: -0.1%
Covered Lines: 2292
Relevant Lines: 2449

💛 - Coveralls

@coveralls
Copy link

coveralls commented Jun 26, 2024

Pull Request Test Coverage Report for Build 9674389614

Details

  • 83 of 91 (91.21%) changed or added relevant lines in 2 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage decreased (-0.1%) to 93.589%

Changes Missing Coverage Covered Lines Changed/Added Lines %
internal/checkers/http_const.go 75 83 90.36%
Totals Coverage Status
Change from base Build 9673069496: -0.1%
Covered Lines: 2292
Relevant Lines: 2449

💛 - Coveralls

@mmorel-35
Copy link
Author

@ccoVeille ,
I won’t squash my commit but please @Antonboom , remove the "update my_file.go" from the content of the squashed commit of the pull-request. It makes my eyes bleed are totally useless comments.

@mmorel-35 mmorel-35 requested a review from ccoVeille June 26, 2024 06:16
@ccoVeille
Copy link
Contributor

Thanks for taking my workflow suggestion into account.

I do hate to see a log like that. But for reviewing it's way simpler.

Please note, I'm OK with you to rearrange the commits in the way you intend. But many only once you get an approval for the PR. Anx with a message like in the PR like "squashing previously reviewd changes"

I dislike squashed PR too, that's why I'm suggesting that.

Also squashing when merging would nuke the respective contribution of each developer. Think about Anton "maintainer review" commit.

At least, GitHub doesn't nuke authors who contributed as it adds the Co-Authored-By tag in the squashed commit message.

But I do think it's way easier for reviewing with atomic and iterative commits.

Thanks again for baring with me

@coveralls
Copy link

coveralls commented Jun 27, 2024

Pull Request Test Coverage Report for Build 9695506618

Details

  • 80 of 88 (90.91%) changed or added relevant lines in 2 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage decreased (-0.1%) to 93.581%

Changes Missing Coverage Covered Lines Changed/Added Lines %
internal/checkers/http_const.go 72 80 90.0%
Totals Coverage Status
Change from base Build 9673069496: -0.1%
Covered Lines: 2289
Relevant Lines: 2446

💛 - Coveralls

@coveralls
Copy link

coveralls commented Jun 27, 2024

Pull Request Test Coverage Report for Build 9696894260

Details

  • 81 of 93 (87.1%) changed or added relevant lines in 2 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage decreased (-0.3%) to 93.431%

Changes Missing Coverage Covered Lines Changed/Added Lines %
internal/checkers/http_const.go 73 85 85.88%
Totals Coverage Status
Change from base Build 9673069496: -0.3%
Covered Lines: 2290
Relevant Lines: 2451

💛 - Coveralls

Copy link
Contributor

@ccoVeille ccoVeille left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM thanks

{Fn: "HTTPStatusCode", Argsf: `httpOK, http.MethodGet, "/index", nil, http.StatusOK`},
{Fn: "HTTPBodyContains", Argsf: `httpHelloName, http.MethodGet, "/", url.Values{"name": []string{"World"}}, "Hello, World!"`},
},
IgnoredAssertions: []Assertion{},
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@mmorel-35 I don't know if you saw this one

@coveralls
Copy link

coveralls commented Jun 27, 2024

Pull Request Test Coverage Report for Build 9702352952

Details

  • 85 of 93 (91.4%) changed or added relevant lines in 2 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage decreased (-0.1%) to 93.594%

Changes Missing Coverage Covered Lines Changed/Added Lines %
internal/checkers/http_const.go 77 85 90.59%
Totals Coverage Status
Change from base Build 9673069496: -0.1%
Covered Lines: 2294
Relevant Lines: 2451

💛 - Coveralls

@coveralls
Copy link

coveralls commented Jun 29, 2024

Pull Request Test Coverage Report for Build 9723300042

Details

  • 85 of 93 (91.4%) changed or added relevant lines in 2 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage decreased (-0.1%) to 93.594%

Changes Missing Coverage Covered Lines Changed/Added Lines %
internal/checkers/http_const.go 77 85 90.59%
Totals Coverage Status
Change from base Build 9673069496: -0.1%
Covered Lines: 2294
Relevant Lines: 2451

💛 - Coveralls

@coveralls
Copy link

coveralls commented Jun 29, 2024

Pull Request Test Coverage Report for Build 9723821079

Details

  • 87 of 95 (91.58%) changed or added relevant lines in 3 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage decreased (-0.1%) to 93.581%

Changes Missing Coverage Covered Lines Changed/Added Lines %
internal/checkers/helpers_basic_type.go 12 14 85.71%
internal/checkers/http_const.go 64 70 91.43%
Totals Coverage Status
Change from base Build 9673069496: -0.1%
Covered Lines: 2289
Relevant Lines: 2446

💛 - Coveralls

Copy link
Contributor

@ccoVeille ccoVeille left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM 👍

May I suggest you to squash/fix up now? To reduce the number of commits

@coveralls
Copy link

coveralls commented Jun 29, 2024

Pull Request Test Coverage Report for Build 9726718535

Details

  • 87 of 95 (91.58%) changed or added relevant lines in 3 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage decreased (-0.1%) to 93.581%

Changes Missing Coverage Covered Lines Changed/Added Lines %
internal/checkers/helpers_basic_type.go 12 14 85.71%
internal/checkers/http_const.go 64 70 91.43%
Totals Coverage Status
Change from base Build 9673069496: -0.1%
Covered Lines: 2289
Relevant Lines: 2446

💛 - Coveralls

@coveralls
Copy link

coveralls commented Jul 4, 2024

Pull Request Test Coverage Report for Build 9798875390

Details

  • 87 of 95 (91.58%) changed or added relevant lines in 3 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage decreased (-0.1%) to 93.581%

Changes Missing Coverage Covered Lines Changed/Added Lines %
internal/checkers/helpers_basic_type.go 12 14 85.71%
internal/checkers/http_const.go 64 70 91.43%
Totals Coverage Status
Change from base Build 9743211634: -0.1%
Covered Lines: 2289
Relevant Lines: 2446

💛 - Coveralls

README.md Outdated Show resolved Hide resolved
@coveralls
Copy link

coveralls commented Jul 4, 2024

Pull Request Test Coverage Report for Build 9799153037

Details

  • 87 of 95 (91.58%) changed or added relevant lines in 3 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage decreased (-0.1%) to 93.581%

Changes Missing Coverage Covered Lines Changed/Added Lines %
internal/checkers/helpers_basic_type.go 12 14 85.71%
internal/checkers/http_const.go 64 70 91.43%
Totals Coverage Status
Change from base Build 9743211634: -0.1%
Covered Lines: 2289
Relevant Lines: 2446

💛 - Coveralls

@coveralls
Copy link

Pull Request Test Coverage Report for Build 9826249234

Details

  • 87 of 95 (91.58%) changed or added relevant lines in 3 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage decreased (-0.1%) to 93.581%

Changes Missing Coverage Covered Lines Changed/Added Lines %
internal/checkers/helpers_basic_type.go 12 14 85.71%
internal/checkers/http_const.go 64 70 91.43%
Totals Coverage Status
Change from base Build 9743211634: -0.1%
Covered Lines: 2289
Relevant Lines: 2446

💛 - Coveralls

2 similar comments
@coveralls
Copy link

Pull Request Test Coverage Report for Build 9826249234

Details

  • 87 of 95 (91.58%) changed or added relevant lines in 3 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage decreased (-0.1%) to 93.581%

Changes Missing Coverage Covered Lines Changed/Added Lines %
internal/checkers/helpers_basic_type.go 12 14 85.71%
internal/checkers/http_const.go 64 70 91.43%
Totals Coverage Status
Change from base Build 9743211634: -0.1%
Covered Lines: 2289
Relevant Lines: 2446

💛 - Coveralls

@coveralls
Copy link

Pull Request Test Coverage Report for Build 9826249234

Details

  • 87 of 95 (91.58%) changed or added relevant lines in 3 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage decreased (-0.1%) to 93.581%

Changes Missing Coverage Covered Lines Changed/Added Lines %
internal/checkers/helpers_basic_type.go 12 14 85.71%
internal/checkers/http_const.go 64 70 91.43%
Totals Coverage Status
Change from base Build 9743211634: -0.1%
Covered Lines: 2289
Relevant Lines: 2446

💛 - Coveralls

@coveralls
Copy link

Pull Request Test Coverage Report for Build 9826674310

Details

  • 87 of 95 (91.58%) changed or added relevant lines in 3 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage decreased (-0.1%) to 93.581%

Changes Missing Coverage Covered Lines Changed/Added Lines %
internal/checkers/helpers_basic_type.go 12 14 85.71%
internal/checkers/http_const.go 64 70 91.43%
Totals Coverage Status
Change from base Build 9743211634: -0.1%
Covered Lines: 2289
Relevant Lines: 2446

💛 - Coveralls

2 similar comments
@coveralls
Copy link

Pull Request Test Coverage Report for Build 9826674310

Details

  • 87 of 95 (91.58%) changed or added relevant lines in 3 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage decreased (-0.1%) to 93.581%

Changes Missing Coverage Covered Lines Changed/Added Lines %
internal/checkers/helpers_basic_type.go 12 14 85.71%
internal/checkers/http_const.go 64 70 91.43%
Totals Coverage Status
Change from base Build 9743211634: -0.1%
Covered Lines: 2289
Relevant Lines: 2446

💛 - Coveralls

@coveralls
Copy link

Pull Request Test Coverage Report for Build 9826674310

Details

  • 87 of 95 (91.58%) changed or added relevant lines in 3 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage decreased (-0.1%) to 93.581%

Changes Missing Coverage Covered Lines Changed/Added Lines %
internal/checkers/helpers_basic_type.go 12 14 85.71%
internal/checkers/http_const.go 64 70 91.43%
Totals Coverage Status
Change from base Build 9743211634: -0.1%
Covered Lines: 2289
Relevant Lines: 2446

💛 - Coveralls

@coveralls
Copy link

coveralls commented Aug 29, 2024

Pull Request Test Coverage Report for Build 10704164578

Details

  • 87 of 95 (91.58%) changed or added relevant lines in 3 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage decreased (-0.1%) to 93.579%

Changes Missing Coverage Covered Lines Changed/Added Lines %
internal/checkers/helpers_basic_type.go 12 14 85.71%
internal/checkers/http_const.go 64 70 91.43%
Totals Coverage Status
Change from base Build 10661004539: -0.1%
Covered Lines: 2288
Relevant Lines: 2445

💛 - Coveralls

Co-Authored-By: ccoVeille <[email protected]>
@mmorel-35 mmorel-35 closed this by deleting the head repository Nov 3, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

http-const: suggest http package constants in HTTP asserts
3 participants